home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et-2_2.lha / et2.2 / applications / makefile next >
Makefile  |  1990-12-04  |  506b  |  36 lines

  1. TEST    =   hello
  2.  
  3. DIRS    =   \
  4.         app \
  5.         calculator \
  6.         color \
  7.         dialog \
  8.         draw \
  9.         desktop \
  10.         er \
  11.         filebrowser \
  12.         filebrowserII \
  13.         hello \
  14.         layout \
  15.         micky \
  16.         miniedit \
  17.         multiundo \
  18.         polydocapp \
  19.         threeshapes \
  20.         tree \
  21.         trofftool \
  22.         twoshapes \
  23.         twoviews \
  24.         typescript \
  25.         vobedit
  26.  
  27. all:
  28.     (cd $(TEST); $(MAKE) $(TEST))
  29.     
  30. clean clobber depend::
  31.     -@for i in $(DIRS); do (cd $$i; $(MAKE) $@); done
  32.  
  33. rmcore:
  34.     rm -f */core
  35.  
  36.